66e10a18a34e7ae2911e9aaf92c15782da925ae5,build-tools/core/src/org/jetbrains/jet/buildtools/core/BytecodeCompiler.java,BytecodeCompiler,env,#String#String[]#,52

Before Change


     */
    private CompileEnvironmentConfiguration env( String stdlib, String[] classpath ) {
        CompilerDependencies dependencies = CompilerDependencies.compilerDependenciesForProduction(CompilerSpecialMode.REGULAR);
        JetCoreEnvironment environment = new JetCoreEnvironment(CompileEnvironmentUtil.createMockDisposable(), dependencies);
        CompileEnvironmentConfiguration env = new CompileEnvironmentConfiguration(environment, dependencies, MessageCollector.PLAIN_TEXT_TO_SYSTEM_ERR);

        if (( stdlib != null ) && ( stdlib.trim().length() > 0 )) {

After Change


     */
    private CompileEnvironmentConfiguration env( String stdlib, String[] classpath ) {
        CompilerDependencies dependencies = CompilerDependencies.compilerDependenciesForProduction(CompilerSpecialMode.REGULAR);
        JetCoreEnvironment environment = JetCoreEnvironment.getCoreEnvironmentForJVM(CompileEnvironmentUtil.createMockDisposable(), dependencies);
        CompileEnvironmentConfiguration env = new CompileEnvironmentConfiguration(environment, dependencies, MessageCollector.PLAIN_TEXT_TO_SYSTEM_ERR);

        if (( stdlib != null ) && ( stdlib.trim().length() > 0 )) {